home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 453 b | 22 lines |
- include $(ROOT)/usr/include/make/commondefs
-
- LLDLIBS = -laudio -lgutil -lgl -lm
- TARGETS = rock notetest clipsound
-
- default all: $(TARGETS)
-
-
- include $(COMMONRULES)
-
- libsample.o: libsample.c
- cc libsample.c -c -O
-
- clipsound: clipsound.c libsample.o
- cc clipsound.c -o clipsound libsample.o $(LDFLAGS)
-
- notetest: notetest.c libsample.o
- cc notetest.c -o notetest libsample.o $(LDFLAGS)
-
- rock: rock.c libsample.o
- cc rock.c -o rock libsample.o $(LDFLAGS)
-